Android contentValues
ContentValues | Android Developers
This class is used to store a set of values that the
Android ContentResolver
can process.
ContentValuesクラスの定義とコンストラクタ - データの操作 - Androidプログラミング入門 | JavaDrive
insertメソッドによるデータの追加 - データの操作 - Androidプログラミング入門 | JavaDrive
code: contentValues.java
ContentValues cv = new ContentValues();
cv.put("name", name);
cv.put("price", price);
db.insert(TABLE_NAME, null, cv);
みたいな感じ。db操作の際に使う値オブジェクト。でいいかな。